home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / newsgrp / group98c.txt / 000044_icon-group-sender _Tue Sep 22 16:42:02 1998.msg < prev    next >
Internet Message Format  |  2000-09-20  |  1KB

  1. Return-Path: <icon-group-sender>
  2. Received: from kingfisher.CS.Arizona.EDU (kingfisher.CS.Arizona.EDU [192.12.69.239])
  3.     by baskerville.CS.Arizona.EDU (8.9.1a/8.9.1) with SMTP id QAA05134
  4.     for <icon-group-addresses@baskerville.CS.Arizona.EDU>; Tue, 22 Sep 1998 16:42:01 -0700 (MST)
  5. Received: by kingfisher.CS.Arizona.EDU (5.65v4.0/1.1.8.2/08Nov94-0446PM)
  6.     id AA12114; Tue, 22 Sep 1998 16:41:32 -0700
  7. To: icon-group@optima.CS.Arizona.EDU
  8. Date: 22 Sep 1998 19:17:32 GMT
  9. From: Douglas Nichols <pharaoh@novagate.com>
  10. Message-Id: <6u8t4c$h7f$0@205.138.136.110>
  11. Sender: icon-group-request@optima.CS.Arizona.EDU
  12. References: <6u4cgj$dhm$0@205.138.136.164>
  13. Subject: Re: Novice Question:  how to fill a text box with a directory listing
  14. Errors-To: icon-group-errors@optima.CS.Arizona.EDU
  15. Status: RO
  16.  
  17.  
  18. For the curious, my Linux solution is currently:
  19.  
  20.    chdir("/opt/oshs/progs/in")
  21.    dir := open("ls *.jpg", "p")
  22.    pictlist := []
  23.    while put(pictlist, read(dir))
  24.    VSetItems(vidgets["list1"], pictlist)
  25.  
  26. What I will do in Windows remains to be seen.  Thanks to all (both of
  27. you--I won't list you here to protect you from spam) who have taken the
  28. time to help me
  29.  
  30. Btw, feel free to suggest corrections or stylistic improvements.  Thank
  31. you.
  32.  
  33.  
  34.